home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 44
/
Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso
/
-in_the_mag-
/
basics
/
amos
/
intuiextend20b.lha
/
distribution
/
exemples
/
Distance.asc
< prev
next >
Wrap
Text File
|
1980-03-04
|
744b
|
31 lines
'**************************************
' *
' IntuiExtend.Lib 2.0/@1995-98 *
' *
' by CIERP Philippe. *
' *
' from AMIGAzette 83 *
' *
'**************************************
'
' Command
' -Wb Distance
'
Screen Open 0,640,512,16,$8004
Curs Off : Flash Off : Cls 0
'
While Mouse Key<>1 : Wend
Gr Writing 2
X0=X Screen(X Mouse)
Y0=Y Screen(Y Mouse)
While Mouse Key=1
X1=X Screen(X Mouse)
Y1=Y Screen(Y Mouse)
DIST=Max(1,Wb Distance(X0,Y0 To X1,Y1))
Ellipse X0,Y0,DIST,DIST
Ellipse X0,Y0,DIST,DIST
Wend
Gr Writing 1
'
Ellipse X0,Y0,DIST,DIST